home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1997 #1 / Amiga Plus CD - 1997 - No. 01.iso / pd / programmierung / quickautodocks / intuition.doc < prev    next >
Text File  |  1992-09-03  |  21KB  |  622 lines

  1. intuition.library quick autodocs
  2.  
  3. NAME     : ActivateGadget
  4. FUNCTION : Activate a (string or custom) gadget
  5. SYNOPSIS : Success=ActivateGadget(Gadget,Window,Request)
  6.               D0       -462         A0     A1     A2
  7.  
  8. NAME     : ActivateWindow
  9. FUNCTION : Activate an Intuition window
  10. SYNOPSIS : ActivateWindow(Window)
  11.                 -450        A0
  12.  
  13. NAME     : AddClass
  14. FUNCTION : Make a public class available
  15. SYNOPSIS : AddClass(Class)
  16.              -684    A0
  17.  
  18. NAME     : AddGadget
  19. FUNCTION : Add a gadget to the gadget list of a windowt
  20. SYNOPSIS : RealPosition=AddGadget(Window,Gadget,Position)
  21.                D0          -42      A0     A1      D0
  22.  
  23. NAME     : AddGList
  24. FUNCTION : Add a linked list of gadgets to a window or requester
  25. SYNOPSIS : RealPosition=AddGList(Window,Gadget,Position,Numgad,Requester)
  26.                D0         -438     A0     A1      D0      D1      A2
  27.  
  28. NAME     : AllocRemember
  29. FUNCTION : AllocMem() with tracking to make freeing easy
  30. SYNOPSIS : MemBlock=AllocRemember(RememberKey,Size,Flags)
  31.               D0        -396          A0       D0   D1
  32.  
  33. NAME     : AllocScreenBuffer
  34. FUNCTION : Get a ScreenBuffer for double-buffering
  35. SYNOPSIS : sbuffer=AllocScreenBuffer(Screen,BitMap,flags)
  36.               D0         -768          A0     A1    D0
  37.  
  38. NAME     : AutoRequest
  39. FUNCTION : Automatically build and get response from a requester
  40. SYNOPSIS : Response=AutoRequest(Window,BodyText,PosText,NegText,PosFlags,
  41.               D0       -348       A0      A1      A2       A3      D0
  42.                                   NegFlags,Width,Height)
  43.                                      D1      D2    D3
  44.  
  45. NAME     : BeginRefresh
  46. FUNCTION : Sets up a window for optimized refreshing
  47. SYNOPSIS : BeginRefresh(Window)
  48.                -354       A0
  49.  
  50. NAME     : BuildEasyRequestArgs
  51. FUNCTION : Simple creation of system request
  52. SYNOPSIS : ReqWindow=BuildEasyRequestArgs(RefWindow,easyStruct,IDCMP,Args)
  53.               D0             -594             A0        A1      D0    A3
  54.  
  55. NAME     : BuildSysRequest
  56. FUNCTION : Build and display a system requester
  57. SYNOPSIS : ReqWindow=BuildSysRequest(Window,BodyText,PosText,NegText,
  58.                D0        -360          A0      A1      A2      A3
  59.                                      IDCMPFlags,Width,Height)
  60.                                          D0       D1    D2
  61.  
  62. NAME     : ChangeScreenBuffer
  63. FUNCTION : Swap the screen's BitMap
  64. SYNOPSIS : success=ChangeScreenBuffer(Screen,ScreenBuffer)
  65.               D0         -780           A0        A1
  66.  
  67. NAME     : ChangeWindowBox
  68. FUNCTION : Change window position and dimensions
  69. SYNOPSIS : ChangeWindowBox(Window,Left,Top,Width,Height)
  70.                  -486        A0    D0   D1   D2    D3
  71.  
  72. NAME     : ClearDMRequest
  73. FUNCTION : Clear (detaches) the DMRequest of the window
  74. SYNOPSIS : Response=ClearDMRequest(Window)
  75.               D0         -48         A0
  76.  
  77. NAME     : ClearMenuStrip
  78. FUNCTION : Clear (detach) the menu strip from the window
  79. SYNOPSIS : ClearMenuStrip(Window)
  80.                 -54         A0
  81.  
  82. NAME     : ClearPointer
  83. FUNCTION : Clear the mouse pointer definition from a window
  84. SYNOPSIS : ClearPointer(Window)
  85.                 -60       A0
  86.  
  87. NAME     : CloseScreen
  88. FUNCTION : Close an Intuition screen
  89. SYNOPSIS : Success=CloseScreen(Screen)
  90.               D0       -66       A0
  91.  
  92. NAME     : CloseWindow
  93. FUNCTION : Close an Intuition window
  94. SYNOPSIS : CloseWindow(Window)
  95.                -72       A0
  96.  
  97. NAME     : CloseWorkBench
  98. FUNCTION : Closes the Workbench screen
  99. SYNOPSIS :  Success=CloseWorkBench()
  100.                D0        -78
  101.  
  102. NAME     : CurrentTime
  103. FUNCTION : Get the current time values
  104. SYNOPSIS : CurrentTime(Seconds,Micros)
  105.                -84       A0      A1
  106.  
  107. NAME     : DisplayAlert
  108. FUNCTION : Create the display of an alert message
  109. SYNOPSIS : Response=DisplayAlert(AlertNumber,String,Height)
  110.               D0        -90          D0        A0     D1
  111.  
  112. NAME     : DisplayBeep
  113. FUNCTION : Flash the video display
  114. SYNOPSIS : DisplayBeep(Screen)
  115.                -96       A0
  116.  
  117. NAME     : DisposeObject
  118. FUNCTION : Deletes a 'boopsi' object
  119. SYNOPSIS : DisposeObject(Object)
  120.                 -642       A0
  121.  
  122. NAME     : DoGadgetMethodA
  123. FUNCTION : Invoke method on a boopsi gadget
  124. SYNOPSIS : result=DoGadgetMethodA(Gadget,Window,Requester,Message)
  125.              D0        -810         A0     A1       A2       A3
  126.  
  127. NAME     : DoubleClick
  128. FUNCTION : Test two time values for double-click timing
  129. SYNOPSIS : IsDouble=DoubleClick(StartSecs,StartMicros,CurrentSecs,
  130.               D0        -102        D0         D1          D2
  131.                                 CurrentMicros)
  132.                                       D3
  133.  
  134. NAME     : DrawBorder
  135. FUNCTION : Draw the specified Border structure into a RastPort
  136. SYNOPSIS : DrawBorder(RastPort,Border,LeftOffset,TopOffset)
  137.               -108       A0      A1       D0         D1
  138.  
  139. NAME     : DrawImage
  140. FUNCTION : Draw the specified Image structure into a RastPort
  141. SYNOPSIS : DrawImage(RastPort,Image,LeftOffset,TopOffset)
  142.               -114      A0      A1      D0         D1
  143.  
  144. NAME     : DrawImageState
  145. FUNCTION : Draw an (extended) Intuition Image with special visual state
  146. SYNOPSIS :DrawImageState(RPort,Image,LeftOffset,TopOffset,State,DrawInfo)
  147.                -618       A0     A1      D0         D1      D2     A2
  148.  
  149. NAME     : EasyRequestArgs
  150. FUNCTION : Easy alternative to AutoRequest()
  151. SYNOPSIS : num=EasyRequestArgs(Window,easyStruct,IDCMP_ptr,ArgList)
  152.             D0       -588        A0       A1         A2       A3
  153.  
  154. NAME     : EndRefresh
  155. FUNCTION : End the optimized refresh state of the window
  156. SYNOPSIS : EndRefresh(Window,Complete)
  157.               -366      A0      D0
  158.  
  159. NAME     : EndRequest
  160. FUNCTION : Remove a currently active requester
  161. SYNOPSIS : EndRequest(Requester,Window)
  162.               -120       A0       A1
  163.  
  164. NAME     : EraseImage
  165. FUNCTION : Erases an Image
  166. SYNOPSIS : EraseImage(RPort,Image,LeftOffset,TopOffset)
  167.               -630     A0     A1      D0         D1
  168.  
  169. NAME     : FreeClass
  170. FUNCTION : Frees a boopsi class created by MakeClass()
  171. SYNOPSIS : success=FreeClass(ClassPtr)
  172.               D0      -714      A0
  173.  
  174. NAME     : FreeRemember
  175. FUNCTION : Free memory allocated by calls to AllocRemember()
  176. SYNOPSIS : FreeRemember(RememberKey,ReallyForget)
  177.                -408         A0           D0
  178.  
  179. NAME     : FreeScreenBuffer
  180. FUNCTION : Free a ScreenBuffer structure
  181. SYNOPSIS : FreeScreenBuffer(Screen,ScreenBuffer)
  182.                  -774         A0        A1
  183.  
  184. NAME     : FreeScreenDrawInfo
  185. FUNCTION : Finish using a DrawInfo structure
  186. SYNOPSIS : FreeScreenDrawInfo(Screen,DrInfo)
  187.                   -696          A0     A1
  188.  
  189. NAME     : FreeSysRequest
  190. FUNCTION : Free resources gotten by a call to BuildSysRequest()
  191. SYNOPSIS : FreeSysRequest(Window)
  192.                 -372        A0
  193.  
  194. NAME     : GadgetMouse
  195. FUNCTION : Calculate gadget-relative mouse position
  196. SYNOPSIS : GadgetMouse(Gadget,GInfo,MousePoint)
  197.                -570      A0     A1      A2
  198.  
  199. NAME     : GetAttr
  200. FUNCTION : Inquire the value of some attribute of an object
  201. SYNOPSIS : attr=GetAttr(AttrID,Object,StoragePtr)
  202.             D0    -654    D0     A0       A1
  203.  
  204. NAME     : GetDefaultPubScreen
  205. FUNCTION : Get name of default public screen
  206. SYNOPSIS : GetDefaultPubScreen(Namebuff)
  207.                    -582           A0
  208.  
  209. NAME     : GetDefPrefs
  210. FUNCTION : Get a copy of the the Intuition default Preferences
  211. SYNOPSIS : Prefs=GetDefPrefs(PrefBuffer,Size)
  212.              D0      -126        A0      D0
  213.  
  214. NAME     : GetPrefs
  215. FUNCTION : Get the current Intuition Preferences structure
  216. SYNOPSIS : Prefs=GetPrefs(PrefBuffer,Size)
  217.              D0    -132       A0      D0
  218.  
  219. NAME     : GetScreenData
  220. FUNCTION : Get copy of a screen data structure
  221. SYNOPSIS : Success=GetScreenData(Buffer,Size,Type,Screen)
  222.               D0        -426       A0    D0   D1    A1
  223.  
  224. NAME     : GetScreenDrawInfo
  225. FUNCTION : Get pointer to rendering information
  226. SYNOPSIS : DrInfo=GetScreenDrawInfo(Screen)
  227.              D0          -690         A0
  228.  
  229. NAME     : HelpControl
  230. FUNCTION : Enable/disable Gadget-Help feature
  231. SYNOPSIS : HelpControl(window,flags)
  232.                -828      A0    D0
  233.  
  234. NAME     : InitRequester
  235. FUNCTION : Initialize a Requester structure
  236. SYNOPSIS : InitRequester(Requester)
  237.                 -138        A0
  238.  
  239. NAME     : IntuiTextLength
  240. FUNCTION : Return the length (pixel-width) of an IntuiText
  241. SYNOPSIS : Length=IntuiTextLength(IText)
  242.              D0         -330       A0
  243.  
  244. NAME     : ItemAddress
  245. FUNCTION : Returns the address of the specified MenuItem
  246. SYNOPSIS : Item=ItemAddress(MenuStrip,MenuNumber)
  247.             D0      -144        A0        D0
  248.  
  249. NAME     : LendMenus
  250. FUNCTION : Lend window's menu action to another window
  251. SYNOPSIS : LendMenus(fromWindow,toWindow)
  252.               -804       A0        A1
  253.  
  254. NAME     : LockIBase
  255. FUNCTION : Invoke semaphore arbitration of IntuitionBase
  256. SYNOPSIS : Lock=LockIBase(LockNumber)
  257.             D0     -414       D0
  258.  
  259. NAME     : LockPubScreen
  260. FUNCTION : Prevent a public screen from closing
  261. SYNOPSIS : screen=LockPubScreen(Name)
  262.              D0       -510       A0
  263.  
  264. NAME     : LockPubScreenList
  265. FUNCTION : Prevent changes to the system list
  266. SYNOPSIS : List=LockPubScreenList()
  267.             D0        -522
  268.  
  269. NAME     : MakeClass
  270. FUNCTION : Create and initialize a boopsi class
  271. SYNOPSIS : iclass=MakeClass(ClassID,SuperClassID,SuperClassPtr,
  272.              D0      -678      A0        A1            A2
  273.                             InstanceSize,Flags)
  274.                                  D0       D1
  275.  
  276. NAME     : MakeScreen
  277. FUNCTION : Do an Intuition-integrated MakeVPort() of a screen
  278. SYNOPSIS : failure=MakeScreen(Screen)
  279.               D0      -378      A0
  280.  
  281. NAME     : ModifyIDCMP
  282. FUNCTION : Modify the state of a window's IDCMPFlags
  283. SYNOPSIS : Success=ModifyIDCMP(Window,IDCMPFlags)
  284.               D0       -150      A0       D0
  285.  
  286. NAME     : ModifyProp
  287. FUNCTION : Modify the current parameters of a proportional gadget
  288. SYNOPSIS : ModifyProp(Gadget,Window,Requester,Flags,HorizPot,VertPot,
  289.               -156      A0     A1      A2      D0      D1       D2
  290.                       HorizBody,VertBody)
  291.                           D3       D4
  292.  
  293. NAME     : MoveScreen
  294. FUNCTION : Attempt to move the screen by the increments provided
  295. SYNOPSIS : MoveScreen(Screen,DeltaX,DeltaY)
  296.               -162      A0     D0     D1
  297.  
  298. NAME     : MoveWindow
  299. FUNCTION : Ask Intuition to move a window
  300. SYNOPSIS : MoveWindow(Window,DeltaX,DeltaY)
  301.               -168      A0     D0     D1
  302.  
  303. NAME     : MoveWindowInFrontOf
  304. FUNCTION : Arrange the relative depth of a window
  305. SYNOPSIS : MoveWindowInFrontOf(Window,BehindWindow)
  306.                   -480           A0        A1
  307.  
  308. NAME     : NewModifyProp
  309. FUNCTION : ModifyProp(),but with selective refresh
  310. SYNOPSIS : NewModifyProp(Gadget,Window,Requester,Flags,HorizPot,VertPot,
  311.                -468        A0     A1      A2      D0      D1       D2
  312.                          HorizBody,VertBody,NumGad)
  313.                              D3       D4      D5
  314.  
  315. NAME     : NewObjectA
  316. FUNCTION : Create an object from a class
  317. SYNOPSIS : object=NewObjectA(class,classID,tagList)
  318.              D0      -636      A0     A1     A2
  319.  
  320. NAME     : NextObject
  321. FUNCTION : iterate through the object on an Exec list
  322. SYNOPSIS : object=NextObject(objectPtrPtr)
  323.              D0      -666         A0
  324.  
  325. NAME     : NextPubScreen
  326. FUNCTION : Identify next public screen in the cycle
  327. SYNOPSIS : Buff=NextPubScreen(Screen,NameBuff)
  328.             D0       -534       A0      A1
  329.  
  330. NAME     : ObtainGIRPort
  331. FUNCTION : Set up a RastPort for a custom gadget
  332. SYNOPSIS : RPort=ObtainGIRPort(GInfo)
  333.             D0        -558       A0
  334.  
  335. NAME     : OffGadget
  336. FUNCTION : Disable the specified gadget
  337. SYNOPSIS : OffGadget(Gadget,Window,Requester)
  338.               -174     A0     A1      A2
  339.  
  340. NAME     : OffMenu
  341. FUNCTION : Disable the given menu or menu item
  342. SYNOPSIS : OffMenu(Window,MenuNumber)
  343.              -180    A0       D0
  344.  
  345. NAME     : OnGadget
  346. FUNCTION : Enable the specified gadget
  347. SYNOPSIS : OnGadget(Gadget,Window,Requester)
  348.              -186     A0     A1      A2
  349.  
  350. NAME     : OnMenu
  351. FUNCTION : Enable the given menu or menu item
  352. SYNOPSIS : OnMenu(Window,MenuNumber)
  353.             -192    A0      D0
  354.  
  355. NAME     : OpenScreen
  356. FUNCTION : Open an Intuition screen
  357. SYNOPSIS : Screen=OpenScreen(NewScreen)
  358.              D0      -198       A0
  359.  
  360. NAME     : OpenScreenTagList
  361. FUNCTION : OpenScreen() with TagItem extension array
  362. SYNOPSIS : Screen=OpenScreenTagList(NewScreen,TagItems)
  363.              D0        -612             A0       A1
  364.  
  365. NAME     : OpenWindow
  366. FUNCTION : Open an Intuition window
  367. SYNOPSIS : Window=OpenWindow(NewWindow)
  368.              D0      -204       A0
  369.  
  370. NAME     : OpenWindowTagList
  371. FUNCTION : OpenWindow() with TagItem extension
  372. SYNOPSIS : Window=OpenWindowTagList(NewWindow,TagItems)
  373.              D0         -606            A0       A1
  374.  
  375. NAME     : OpenWorkBench
  376. FUNCTION : Open the Workbench screen
  377. SYNOPSIS : WBScreen=OpenWorkBench()
  378.               D0        -210
  379.  
  380. NAME     : PointInImage
  381. FUNCTION : Tests whether an image 'contains' a point
  382. SYNOPSIS : DoesContain=PointInImage(Point,Image)
  383.                D0          -624      D0    A0
  384.  
  385. NAME     : PrintIText
  386. FUNCTION : Print text described by the IntuiText argument
  387. SYNOPSIS : PrintIText(RastPort,IText,LeftOffset,TopOffset)
  388.               -216       A0     A1       D0        D1
  389.  
  390. NAME     : PubScreenStatus
  391. FUNCTION : Change status flags for a public screen
  392. SYNOPSIS : ResultFlags=PubScreenStatus(Screen,StatusFlags)
  393.                D0            -552        A0       D0
  394.  
  395. NAME     : QueryOverscan
  396. FUNCTION : Inquire about a standard overscan region
  397. SYNOPSIS : success=QueryOverscan(DisplayID,Rect,OScanType)
  398.               D0        -474         A0     A1     D0
  399.  
  400. NAME     : RefreshGadgets
  401. FUNCTION : Refresh (redraw) the gadget display
  402. SYNOPSIS : RefreshGadgets(Gadgets,Window,Requester)
  403.                 -222        A0      A1      A2
  404.  
  405. NAME     : RefreshGList
  406. FUNCTION : Refresh (redraw) a chosen number of gadgets
  407. SYNOPSIS : RefreshGList(Gadgets,Window,Requester,NumGad)
  408.                -432       A0      A1      A2       D0
  409.  
  410. NAME     : RefreshWindowFrame
  411. FUNCTION : Ask Intuition to redraw your window border
  412. SYNOPSIS : RefreshWindowFrame(Window)
  413.                   -456          A0
  414.  
  415. NAME     : ReleaseGIRPort
  416. FUNCTION : Release a custom gadget RastPort
  417. SYNOPSIS : ReleaseGIRPort(RPort)
  418.                -564        A0
  419.  
  420. NAME     : RemakeDisplay
  421. FUNCTION : Remake the entire Intuition display
  422. SYNOPSIS : failure=RemakeDisplay()
  423.               D0       -384
  424.  
  425. NAME     : RemoveClass
  426. FUNCTION : Make a public boopsi class unavailable
  427. SYNOPSIS : RemoveClass(classPtr)
  428.               -708        A0
  429.  
  430. NAME     : RemoveGadget
  431. FUNCTION : Remove a gadget from a window
  432. SYNOPSIS : Position=RemoveGadget(Window,Gadget)
  433.               D0       -228        A0     A1
  434.  
  435. NAME     : RemoveGList
  436. FUNCTION : Remove a sublist of gadgets from a window
  437. SYNOPSIS : Position=RemoveGList(Window,Gadget,Numgad)
  438.               D0       -444       A0     A1     D0
  439.  
  440. NAME     : ReportMouse
  441. FUNCTION : Tell Intuition whether to report mouse movement
  442. SYNOPSIS : ReportMouse(Boolean,Window)
  443.                -234      D0      A0
  444.  
  445. NAME     : Request
  446. FUNCTION : Activate a requester
  447. SYNOPSIS : Success=Request(Requester,Window)
  448.               D0     -240     A0       A1
  449.  
  450. NAME     : ResetMenuStrip
  451. FUNCTION : Re-attach a menu strip to a window
  452. SYNOPSIS : Success=ResetMenuStrip(Window,Menu)
  453.               D0        -702        A0    A1
  454.  
  455. NAME     : RethinkDisplay
  456. FUNCTION : Grand manipulation of the entire Intuition display
  457. SYNOPSIS : failure=RethinkDisplay()
  458.               D0        -390
  459.  
  460. NAME     : ScreenDepth
  461. FUNCTION : Depth arrange a screen with extra control
  462. SYNOPSIS : ScreenDepth(screen,flags,reserved)
  463.                -786      A0    D0      A1
  464.  
  465. NAME     : ScreenPosition
  466. FUNCTION : Move screens with greater control
  467. SYNOPSIS : ScreenPosition(Screen,flags,x1,y1,x2,y2)
  468.                 -792        A0    D0   D1 D2 D3 D4
  469.  
  470. NAME     : ScreenToBack
  471. FUNCTION : Send the specified screen to the back of the display
  472. SYNOPSIS : ScreenToBack(Screen)
  473.                -246       A0
  474.  
  475. NAME     : ScreenToFront
  476. FUNCTION : Make the specified screen the frontmost
  477. SYNOPSIS : ScreenToFront(Screen)
  478.                 -252       A0
  479.  
  480. NAME     : ScrollWindowRaster
  481. FUNCTION : Intuition-friendly ScrollRasterBF()
  482. SYNOPSIS : ScrollWindowRaster(win,dx,dy,xmin,ymin,xmax,ymax)
  483.                   -798        A1  D0 D1  D2   D3   D4   D5
  484.  
  485. NAME     : SetAttrsA
  486. FUNCTION : Specify attribute values for an object
  487. SYNOPSIS : result=SetAttrsA(Object,TagList)
  488.              D0      -648     A0      A1
  489.  
  490. NAME     : SetDefaultPubScreen
  491. FUNCTION : Choose a new default public screen
  492. SYNOPSIS : SetDefaultPubScreen(Name)
  493.                    -540         A0
  494.  
  495. NAME     : SetDMRequest
  496. FUNCTION : Set the DMRequest of a window
  497. SYNOPSIS : success=SetDMRequest(Window,DMRequest)
  498.               D0       -258       A0      A1
  499.  
  500. NAME     : SetEditHook
  501. FUNCTION : Set global processing for string gadgets
  502. SYNOPSIS : OldHook=SetEditHook(Hook)
  503.               D0       -492     A0
  504.  
  505. NAME     : SetGadgetAttrsA
  506. FUNCTION : Specify attribute values for a boopsi gadget
  507. SYNOPSIS : result=SetGadgetAttrsA(Gadget,Window,Requester,TagList)
  508.              D0         -660        A0     A1      A2        A3
  509.  
  510. NAME     : SetMenuStrip
  511. FUNCTION : Attach a menu strip to a window
  512. SYNOPSIS : Success=SetMenuStrip(Window,Menu)
  513.               D0       -264       A0    A1
  514.  
  515. NAME     : SetMouseQueue
  516. FUNCTION : Change limit on pending mouse messages
  517. SYNOPSIS : oldQueueLength=SetMouseQueue(Window,QueueLength)
  518.                  D0            -498       A0       D0
  519.  
  520. NAME     : SetPointer
  521. FUNCTION : Specify a pointer sprite image for a window
  522. SYNOPSIS : SetPointer(Window,Pointer,Height,Width,XOffset,YOffset)
  523.               -270      A0     A1      D0     D1    D2      D3
  524.  
  525. NAME     : SetPrefs
  526. FUNCTION : Set Intuition preferences data
  527. SYNOPSIS : Prefs=SetPrefs(PrefBuffer,Size,Inform)
  528.              D0    -324       A0      D0    D1
  529.  
  530. NAME     : SetPubScreenModes
  531. FUNCTION : Establish global public screen behavior
  532. SYNOPSIS : OldModes=SetPubScreenModes(Modes)
  533.               D0         -546          D0
  534.  
  535. NAME     : SetWindowPointerA
  536. FUNCTION : Select a pointer for your window
  537. SYNOPSIS : SetWindowPointerA(window,taglist)
  538.                   -816         A0     A1
  539.  
  540. NAME     : SetWindowTitles
  541. FUNCTION : Set the window's titles for both window and screen
  542. SYNOPSIS : SetWindowTitles(Window,WindowTitle,ScreenTitle)
  543.                 -276         A0       A1          A2
  544.  
  545. NAME     : ShowTitle
  546. FUNCTION : Set the screen title bar display mode
  547. SYNOPSIS : ShowTitle(Screen,ShowIt)
  548.               -282     A0     D0
  549.  
  550. NAME     : SizeWindow
  551. FUNCTION : Ask Intuition to size a window
  552. SYNOPSIS : SizeWindow(Window,DeltaX,DeltaY)
  553.               -288      A0     D0     D1
  554.  
  555. NAME     : SysReqHandler
  556. FUNCTION : Handle system requester input
  557. SYNOPSIS : num=SysReqHandler(Window,IDCMPFlagsPtr,WaitInput)
  558.             D0      -600       A0        A1          D0
  559.  
  560. NAME     : TimedDisplayAlert
  561. FUNCTION : Display an alert with automatic time-out
  562. SYNOPSIS : Response=TimedDisplayAlert(AlertNumber,String,Height,Time)
  563.               D0          -822            D0        A0     D1    A1
  564.  
  565. NAME     : UnlockIBase
  566. FUNCTION : Surrender an Intuition lock gotten by LockIBase()
  567. SYNOPSIS : UnlockIBase(Lock)
  568.               -420      A0
  569.  
  570. NAME     : UnlockPubScreen
  571. FUNCTION : Release lock on a public screen
  572. SYNOPSIS : UnlockPubScreen(Name,Screen)
  573.                 -516        A0    A1
  574.  
  575. NAME     : UnlockPubScreenList
  576. FUNCTION : Release public screen list semaphore
  577. SYNOPSIS : UnlockPubScreenList()
  578.                 -528
  579.  
  580. NAME     : ViewAddress
  581. FUNCTION : Return the address of the Intuition View structure
  582. SYNOPSIS : view=ViewAddress()
  583.             D0      -294
  584.  
  585. NAME     : ViewPortAddress
  586. FUNCTION : Return the address of a window's viewport
  587. SYNOPSIS : ViewPort=ViewPortAddress(Window)
  588.               D0         -300         A0
  589.  
  590. NAME     : WBenchToBack
  591. FUNCTION : Send the Workbench screen in back of all screens
  592. SYNOPSIS : Success=WBenchToBack()
  593.               D0       -306
  594.  
  595. NAME     : WBenchToFront
  596. FUNCTION : Bring the Workbench screen in front of all screens
  597. SYNOPSIS : Success=WBenchToFront()
  598.               D0       -342
  599.  
  600. NAME     : WindowLimits
  601. FUNCTION : Set the minimum and maximum limits of a window
  602. SYNOPSIS : Success=WindowLimits(Window,MinWidth,MinHeight,
  603.               D0       -318       A0      D0       D1
  604.                                 MaxWidth,MaxHeight)
  605.                                    D2       D3
  606.  
  607. NAME     : WindowToBack
  608. FUNCTION : Ask Intuition to send a window behind others
  609. SYNOPSIS : WindowToBack(Window)
  610.                -336       A0
  611.  
  612. NAME     : WindowToFront
  613. FUNCTION : Ask Intuition to bring a window to the front
  614. SYNOPSIS : WindowToFront(Window)
  615.                 -312       A0
  616.  
  617. NAME     : ZipWindow
  618. FUNCTION : Change window to 'alternate' position and dimensions
  619. SYNOPSIS : ZipWindow(Window)
  620.               -504     A0
  621.  
  622.